14ae39c215c3202d05675d3a768fc747c07291bb,jfixby-cmns-api/jfixby-commons-api/com/jfixby/cmns/ver/Version.java,Version,getVersionString,#,28

Before Change


		Debug.checkNull("packageName", this.packageName);
		Debug.checkEmpty("packageName", this.packageName);
		Debug.checkNull("stage", this.stage);
		Debug.checkTrue("major is invalid: " + this.major, this.major >= 0);
		Debug.checkTrue("minor is invalid: " + this.minor, this.minor >= 0);
		Debug.checkTrue("build is invalid: " + this.build, this.build >= 0);
		return this.major + "." + this.minor + "." + this.stage.tagName + "." + this.build;
	}

	public String getPackageVersionString () {

After Change


	public String getVersionString () {
		Debug.checkNull("packageName", this.packageName);
		Debug.checkEmpty("packageName", this.packageName);
		Debug.checkEmpty("major is invalid", this.major);
		Debug.checkEmpty("minor is invalid", this.minor);
		Debug.checkEmpty("build is invalid ", this.build);
		Debug.checkNull("major is invalid", this.major);
		Debug.checkNull("minor is invalid", this.minor);
		Debug.checkNull("build is invalid ", this.build);
		return this.major + "." + this.minor + "." + this.build;
	}